home *** CD-ROM | disk | FTP | other *** search
/ Education (Super OZ Shareware) / Education (Super OZ Shareware).iso / arj / arjrest.bat < prev    next >
DOS Batch File  |  1993-07-20  |  278b  |  10 lines

  1. REM ARJ program to restore archives on a drive to another drive overwriting
  2. if "%1" == "" goto param_err
  3. if "%2" == "" goto param_err
  4. ARJ x -vv -y %1:backup %2:\
  5. goto end
  6. :param_err
  7. REM Usage: ARJREST diskette_drive_letter hard_drive_letter
  8. REM        ARJREST A C
  9. :end
  10.